home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / updates / update26.zoo / include / utime.h < prev   
Encoding:
C/C++ Source or Header  |  1992-11-07  |  138 b   |  10 lines

  1. #ifndef _U_TIME_H
  2. #define _U_TIME_H
  3.  
  4. struct utimbuf {            /* type for times() call */
  5.     time_t    actime;
  6.     time_t    modtime;
  7. };
  8.  
  9. #endif _U_TIME_H
  10.